Simplest option to hide an html tag is to put it inside a div element like below. hides all the tags inside the div tag.
Put what ever u want to hide inside a div with attribute style=visibility:hidden
<div style="visibility:hidden"><template>/templateindex.html</template></div>
|